home *** CD-ROM | disk | FTP | other *** search
/ infoROM 17,000 Product Descriptions for Business / infoROM Product Descriptions for Business - ESX Interactive.ISO / argdemos / squig / install.dat < prev    next >
Encoding:
Text File  |  1992-12-09  |  2.8 KB  |  117 lines

  1. @defineProject
  2.         @Name = "Squiggle"
  3.         @Version = "1.00"
  4.         @Outdrive = C
  5.         @Subdir = "\\squiggle"
  6. @endProject
  7.  
  8. @Display
  9.  
  10.  
  11.  
  12.                     Welcome to @Name @Version installation!
  13.  
  14.                   
  15.                              (C) Copyright 1992
  16.                              All Rights Reserved
  17.                       
  18.                            The Premisys Corporation
  19.                             Chicago, Illinois  60610
  20.                                       USA
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.                                      @Pause
  29.  
  30. @EndDisplay
  31.  
  32. @GetOutDrive
  33.              
  34.              Which drive would you like to install @Name onto?
  35.  
  36. @EndOutDrive
  37.  
  38. @GetSubDir
  39.             
  40.             Which directory would you like to install @Name to?
  41.         
  42.         @LocalWindow( 5, 50 )
  43. @EndSubDir
  44.  
  45. /* Define a variable for the styles subdirectory */
  46. @DefineVars
  47.         @Dir @StyleDir = "@SubDir\\style"
  48. @EndVars
  49.  
  50. /* Get the style subdirectory */
  51. @GetSubDir @StyleDir
  52.       
  53.       Which directory would you like to install user-defined styles to?
  54.  
  55.         @LocalWindow( 5, 44 )
  56.         @Prompt = " Please Enter the User-Defined Style Directory: "
  57. @EndSubDir
  58.  
  59. @DefineDisk
  60.         @Label = "Disk 1"
  61.  
  62. // This block was automatically generated by Reduce for INSTALL Version 3.2
  63.     @BeginLib SQUIGGLE.LIB
  64.         @File SQUIGGLE.EXE @Size 87504
  65.         @File HPGLPLOT.EXE @Size 32464
  66.         @File DASHED.ST @Size 121
  67.         @File FUZZY.ST @Size 126
  68.         @File NAPKIN.ST @Size 121
  69.         @File NONE.ST @Size 72
  70.         @File SHAKY.ST @Size 95
  71.         @File SKETCH.ST @Size 124
  72.         @File STEADY.ST @Size 93
  73.         @File WAVY.ST @Size 104
  74.         @File SAMPLE.PLT @Size 518
  75.     @EndLib
  76.  
  77.     /* Get the readme file separately */
  78.     @If( @Exists( "@StartupDrive:\\readme.txt" ))
  79.         @File readme.txt
  80.     @EndIf
  81.  
  82. @Enddisk
  83.  
  84. /* Add squiggle directory to path */
  85. @SetAutoexec
  86.         @DiskProto
  87.         @ScreenProto
  88.         @AskOverwrite
  89.         @Path = "@OutDrive:\\@Subdir"
  90. @EndAutoexec
  91.  
  92. @Finish
  93.     /* Create squiggle.set file */
  94.     @Write( "@OutDrive:\\@SubDir\\squiggle.set", "wt",
  95.         "ExeDirectory=@OutDrive:\\@SubDir\n" )
  96.     @Write( , , "UserStyleDirectory=@OutDrive:\\@StyleDir\n" )
  97.     @Write( , , "DefaultStyle=dashed\n" )
  98.  
  99.         /* Change to installation subdirectory, otherwise still in style dir */
  100.     @Mkdir( "@StyleDir" )
  101.         @ChDir( "@SubDir" )
  102.         
  103.                  Installation of @Name @Version is now complete!
  104.   
  105.                To use @Name, type "squiggle" at the DOS Prompt.
  106.  
  107.  
  108.         Thank you for purchasing @Name. We hope you enjoy the program!
  109.  
  110.                         The Premisys Corporation
  111.                              P.O. Box 10042
  112.                         Chicago, Illinois  60610
  113.                              (800) 878-7736
  114.  
  115.                                         @Pause
  116. @EndFinish
  117.